console: Fix console_unregister() signature
authorJulius Werner <[email protected]>
Tue, 4 Dec 2018 01:01:30 +0000 (17:01 -0800)
committerJulius Werner <[email protected]>
Fri, 7 Dec 2018 00:10:36 +0000 (16:10 -0800)
console_unregister() has always returned a pointer to the console that
was removed on success, not just an integer. Fix the C prototype to
match the assembly implementation.

Change-Id: Iafc43de0767a5c87c9ae5c3aba53761dd28d51e6
Signed-off-by: Julius Werner <[email protected]>
include/drivers/console.h

index 23754665cca9044160fa3f6ef83b47a006c04516..02f2f8a2ddf6dee2544f37be9dc53feea7273308 100644 (file)
@@ -52,8 +52,9 @@ typedef struct console {
  * implementation, e.g. console_16550_register() from <uart_16550.h>. Consoles
  * registered that way can be unregistered/reconfigured with below functions.
  */
-/* Remove a single console_t instance from the console list. */
-int console_unregister(console_t *console);
+/* Remove a single console_t instance from the console list. Return a pointer to
+ * the console that was removed if it was found, or NULL if not. */
+console_t *console_unregister(console_t *console);
 /* Returns 1 if this console is already registered, 0 if not */
 int console_is_registered(console_t *console);
 /*